Requirement Editor Tool - Accessing the Assembly Log File

An Assembly Log text file is generated each time a document is assembled using the Requirements Editor Tool. The assembly log contains the assembly response details as well as outputs signature point set and fillable field text elements. This process is used primarily for providing an example to a customer, testing, and to check that the document has been authored correctly.

The file, assembly-log.txt, is saved to the application data folder (\AppData\Local\Temp) and can be opened for viewing using a text editor such as Notepad or copy the xml response portion to an XML editor tool such as XMLSpy.
  • File Name: assembly-log.txt
  • Path: C:\Users\user.name\AppData\Local\Temp\
Note: In the Requirements Editor Tool, under Tools >Options, the Log Signature Point Set setting can be set to true or false; this setting affects the output for the Signature Point Set. See Scenario 1 and Scenario 2 above for details on output differences for these options. The Log Signature Point Set works with dynamic and static documents and works for FOP and RenderX - XEP.

Sample Assembly Log Output:

Below is an example of the output included in the assembly-log.txt file for signature point set, fillable fields, and fillable checkboxes. Information is displayed in XML format.

More information about the element output details can be found in the Data Types section. All elements and attributes for FillableField and FillableCheckbox are always returned in the response file.

<r:SignaturePointSet>
 <r:Signer> 
 <r:Id>First Borrower</r:Id>
 <r:Description>Borrower, Borrower</r:Description>
 <r:SignaturePoints>
 <r:SignaturePoint>
 <r:IncludeDate>false</r:IncludeDate>
 <r:PageNumber>1</r:PageNumber>
 <r:PageOrder>1</r:PageOrder>
 <r:Height>36.0</r:Height>
 <r:Width>198.0</r:Width>
 <r:SignatureText>First Borrower</r:SignatureText>
 <r:XCoordinate>36.0</r:XCoordinate>
 <r:YCoordinate>571.22</r:YCoordinate>
 <r:Type>Signature</r:Type>
 <r:FieldName>SIG_Borrower_2_First Borrower_true_1</r:FieldName>
 </r:SignaturePoint>
 <r:SignaturePoint>
 <r:IncludeDate>false</r:IncludeDate>
 <r:PageNumber>1</r:PageNumber>
 <r:PageOrder>1</r:PageOrder>
 <r:Height>36.0</r:Height>
 <r:Width>50.0</r:Width>
 <r:SignatureText>First Borrower</r:SignatureText>
 <r:XCoordinate>238.0</r:XCoordinate>
 <r:YCoordinate>571.22</r:YCoordinate>
 <r:Type>Date</r:Type>
 <r:FieldName>SIG_Borrower_2_First Borrower_true_1.eSigDate</
 r:FieldName>
 </r:SignaturePoint>
 </r:SignaturePoints>
 </r:Signer>
</r:SignaturePointSet>
<r:FillableFieldSet>
 <r:FillableText>
 <r:FieldName>FillableFieldIsMyName</r:FieldName>
 <r:ToolTip>Please enter something</r:ToolTip>
 <r:Width>144.00002</r:Width>
 <r:Height>14.399963</r:Height>
 <r:FontName>TimesNewRomanPSMT</r:FontName> 
 <r:FontSize>10.0</r:FontSize>
 <r:NumberOfCharacters>20</r:NumberOfCharacters>
 <r:FieldText>default value</r:FieldText>
 <r:HorizontalAlignment>Left</r:HorizontalAlignment>
 <r:Underline>false</r:Underline>
 <r:PageNumber>1</r:PageNumber>
 </r:FillableText>
 <r:FillableCheckbox>
 <r:FieldName>FillableCheckboxIsMyName</r:FieldName>
 <r:ToolTip>Check me by clicking</r:ToolTip>
 <r:Checked>true</r:Checked>
 <r:PageNumber>1</r:PageNumber>
 </r:FillableCheckbox>
</r:FillableFieldSet>